home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / libv7 / clsexec.c next >
Encoding:
C/C++ Source or Header  |  1988-12-29  |  170 b   |  15 lines

  1. /*
  2.  * set close on exec (on Unix)
  3.  */
  4.  
  5. #include <stdio.h>
  6. #include <sgtty.h>
  7.  
  8. void
  9. fclsexec(fp)
  10. FILE *fp;
  11. {
  12.     (void) ioctl(fileno(fp), FIOCLEX, (struct sgttyb *)NULL);
  13. }
  14.  
  15.